
.banner {
    position: relative;
    min-width: 100vw;
    margin-top: -7vw;
    margin-bottom: -28vw;
    height: 45vw;
    object-fit: cover;
    object-position: center;
}


.banner2 {
    position: relative;
    min-width: 100vw;
    margin-top: 0vw;
    
    height: 20vw;
    object-fit: cover;
    object-position: right;
}


.ctn_banner {
  position: relative;
  display: block;
  top: 0vw;
  left: 0;
  width: 100vw;
  height: 45vw;
}

.ctn_banner2 {
  position: relative;
  display: block;
  top: 0vw;
  left: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  margin-bottom: 3vw;
}


.button_banner {
    position: relative;
    display: block;
    background: transparent;
    background-size: cover;
    background-position:initial;
    background-repeat: no-repeat;
    top: 4vw;
    width: 32vw;
    height: 3.5vw;
    left: 8vw;
    border-radius: 0;
    border: 2px solid #fff;
    font-family: 'Open Sans';
    justify-content: center;
    align-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1vw;
    text-align: center;
    cursor: pointer;
    animation: button_banner_animation 6s;
    transition: all 0.5s;
}

.button_banner2 {
    position: absolute;
    display: block;
    background: transparent;
    background-size: cover;
    background-position:initial;
    background-repeat: no-repeat;
    top: calc(70px + 4vw);
    width: 30vw;
    height: 60px;
    right: 10vw;
    border-radius: 0;
    border: 2px solid #fff;
    font-family: 'Open Sans';
    justify-content: center;
    align-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1vw;
    text-align: center;
    cursor: pointer;
    animation: button_banner_animation2 6s;
    transition: all 0.5s;
}


.button_banner:hover {
    color: #A9B9A1;
    background: #fff;
    border: 2px solid #ffffff;
}

#banner_mobile {
    display: none;
}

.titulo_banner {
    position: relative;
    left: 0vw;
    top: 2vw;
    width: 48vw;
    font-family: 'Open Sans';
    color: #fff;
    text-align: center;
    font-size: 3.5vw;
    font-weight: 800;
    line-height: 2.5vw;
    animation: titulo_banner_animation 6s;


}

.titulos_ctn {
    position: absolute;
        top: calc(70px + 2vw);
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 10px;
}


.titulo_banner1 {
    position: relative;
    left: 5vw;
    width: 48vw;
    height: auto;
    font-family: 'Open Sans';
    color: #fff;
    text-align: left;
    font-size: 3.5vw;
    font-weight: 600;
    line-height: 3vw;
    animation: titulo_banner_animation5 6s;
}

.titulo_banner2 {
    position: relative;
    left: 5vw;
    width: 48vw;
    height: auto;
    font-family: 'Open Sans';
    color: #fff;
    text-align: left;
    font-size: 1.2vw;
    font-weight: 400;
    line-height: 2.5vw;
    animation: titulo_banner_animation5 6s;
}


.section0 {
    position: relative;
    z-index: 4;
    height: 37vw;
      clip-path: ellipse(200% 100% at 50% -0%);

}

.section1 {
    position: relative;
    background: #a9b9a122;
    margin-top: -4vw;
    padding-top: 5vw;
    z-index: 1;
    padding-right: 5vw;
    margin-bottom: 4vw;
}

.section2 {
    position: relative;
    background: linear-gradient(to bottom, #a9b9a122 0%, #ffffff4f 100%);
    margin-top: -4vw;
    padding-top: 5vw;
    height: auto;
    z-index: 1;
    padding-right: 5vw;
    padding-bottom: 5vw;
}

.logo_body {
    position: absolute;
    display: none;
    width: 12vw;
    height: auto;
    left: 44vw;
    top: 10vw;
    opacity: 0.3;
}

.grid_procedimentos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 90vw;
  left: 5vw;
}

.card_procedimento {
  position: relative;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card_procedimento:hover {
  transform: translateY(-2px);
  
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}


.card_procedimento:hover .img_procedimentos {
  filter: grayscale(0%);
}

.img_procedimentos {
  width: 100%;
  height: 20vw;
  object-fit: cover;
  display: block;
  filter: grayscale(35%); 
}

.titulo_procedimento {
  position: absolute;
  top: 1vw;
  left: 1vw;
  color: #fff;
  font-size: 1.2vw;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
  z-index: 2;
  padding-right: 10px;
}

.arrow_procedimentos {
  position: absolute;
  bottom: 1vw;
  left: 1vw;
  font-size: 1.6vw;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s ease;
}

.card_procedimento:hover .arrow_procedimentos {
  transform: translate(4px, -4px);
}

.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80vh; 
    overflow: hidden;
    color: #ffffff;
    margin-bottom: 3vw;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(80%) brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 35%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 90vw;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-info {
    flex: 1;
    max-width: 50%;
}

.info-headline {
    font-size: 3vw;
    font-weight: 300;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-headline strong {
    font-weight: 700;
}

.info-cta-button {
    display: inline-block;
    background: #A9B9A1;
    color: #ffffff;
    padding: clamp(0.8rem, 1vw, 1rem) clamp(1.5rem, 2.5vw, 2.5rem);
    margin-top: 2rem;
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.info-cta-button:hover {
    transform: scale(1.05);
    background: #b9c9b1;
}

.info-rule {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
}

.hero-offer-card {
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    width: 25vw;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.offer-discount {
    display: flex;
    align-items: center;
    color: #3b5d7c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.discount-value {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
}

.discount-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    margin-left: 0.75rem;
    max-width: 80px;
}

.offer-title {
    /* ATUALIZADO: Fonte fluida */
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: #3b5d7c;
    font-weight: 300;
    line-height: 1.3;
}

.offer-title strong {
    font-weight: 700;
}

.offer-description {
    /* ATUALIZADO: Fonte fluida */
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #444;
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* --- 5. Responsividade (Mobile) --- */
@media (max-width: 800px) {
    .hero-banner {
        min-height: auto;
        padding: 4rem 0;
        margin-bottom: 5vw;
    }

    .hero-content {
        flex-direction: column;
        width: 90vw;
    }

    .hero-info {
        max-width: 100%;
        order: 2;
        text-align: center;
    }

    .hero-offer-card {
        width: 90vw;
        order: 1;
        margin-bottom: 2.5rem;
    }

    /* Ajusta o tamanho da headline especificamente para mobile */
    .info-headline {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}
.section0, .section1, .section2, .section3, .section4 {
    overflow: hidden;
}
@keyframes titulo_banner_animation {
    0%, 5% {
        left: 100vw;
    }

    20%, 100% {
        left: 0vw;
    }
}

@keyframes titulo_banner_animation5 {
    0%, 5% {
        left: 100vw;
    }

    20%, 100% {
        left: 5vw;
    }
}


@keyframes button_banner_animation {
    0%, 5% {
        left: 100vw;
    }

    20%, 100% {
        left: 8vw;
    }
}

@keyframes escrita_banner_animation {
    0%, 20% {
        left: -20vw;
    }

    35%, 100% {
        left: 5vw;
    }
}



.titulo_banner_span1 {
    position: relative;
    font-size: 2.6vw;
    font-weight: 400;
    line-height: 3.5vw;
    color: #000;

}

.titulo_banner_span2 {
    position: relative;
    top: -1.5vw;
    font-size: 1.5vw;
    font-weight: 400;

}

.escrita_banner {
    position: relative;
    left: 5vw;
    top: 8vw;
    width: 20vw;
    font-family: 'Open Sans';
    color: #d6ad6f;
    text-align: center;
    font-size: 1.2vw;
    font-weight: 400;
    margin-bottom: 14vw;
    animation: escrita_banner_animation 6s;
}

.titulo_principal {
    position: relative;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 2rem;
    margin-left: 5vw;
    margin-bottom: 2vw;
    color: #3f3f3f;
}

.titulo_principal2 {
    position: relative;
    font-family: 'Open Sans';
    font-weight: 800;
    font-size: 1.5rem;
    margin-left: 5vw;
    margin-bottom: 2vw;
    width: 90vw;
    text-align: center;
    color: #A9B9A1;
}

.titulo_principal3 {
    position: relative;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 5vw;
    margin-bottom: 2vw;
    width: 90vw;
    text-align: center;
    color: #000000;
}

.descricao {
    position: relative;
    flex: 2;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 1rem;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-bottom: 5vw;
    text-align: justify;
}

.video_yt {
    position: relative;
    flex: 1;
    aspect-ratio: 1.777;
    margin-right: 5vw;
    margin-top: 0;


}


.instagram {
    position: relative;
    margin-left: 5vw;
    width: 90vw;
    border-radius: 10px;
    margin-bottom: 2vw;
}

.instagram_header {
    position: relative;
    display: flex;
    width: 40vw;
    flex-direction: row;
    margin: auto;
    justify-content: space-between;
    margin-bottom: 2vw;
}

.instagram_titulo {
    position: relative;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.instagram_picture {
    width: 80px;
    height: 80px;
    margin-right: 2vw;
}

.instagram_nome {
    position: relative;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
    margin-top: 1vw;
    margin-bottom: 2vw;
    width: auto;
}

.instagram_username {
    font-size: 0.8rem;
    color: #565555;
    font-weight: 400;
    width: 0;

}

.instagram_foto {
    position: relative;
    width: calc(22.5vw - 1px);
    height: calc(22.5vw - 2.5px);
    object-fit: cover;
}

.instagram_foto_hover_info {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(22.5vw - 2.5px);
    height: calc(22.5vw - 2.5px);
    margin-top: calc(-22.5vw - 2.5px);
    background: #000000b4;
}

.button_instagram {
    position: relative;
    display: flex;
    width: 8vw;
    height: 2vw;
    border-radius: 5px;
    background: #2E5C6Eb4;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 2vw;
}

.logo_instagram {
    position: relative;
    width: 1vw;
    height: 1vw;
    margin-right: 0.5vw;
}

.instagram_grid {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1px;
}

.instagram_foto_hover {
    display: none;
}

.ctn_instagram_info {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 1vw;
}

.instagram_info {
    position: relative;
    font-family: 'Open Sans';
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    width: 10vw;
}

.instagram_info2 {
    color: #565555;
    font-size: 0.8rem;
    font-weight: 400;
}

.instagram_foto:hover ~ .instagram_foto_hover {
    display: block;
}

.instagram_foto_hover:hover {
    display: block;
}

.instagram_descricao {
    position: relative;
    width: 22.5vw;
    height: 9vw;
    font-family: 'Open Sans';
    font-size: 0.9vw;
    font-weight: 400;
    color: #fff;
    text-align: justify;
    padding: 2vw;
    overflow: hidden;
    
}

.instagram_info_hover {
    position: relative;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 1vw;
    color: #fff;
    margin: 0vw;
}

.instagram_icon_img {
    margin-right: 1vw;
    width: 2vw;
}

.instagram_info_unique_ctn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: left;
    justify-content: space-between;
    border: 0px solid red;
}

.instagram_hover_info_ctn {
    position: relative;
    left: 0vw;
    min-width: 13.5vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 2vw;
    margin-top: 4vw;
    margin-bottom: 0;
    border: 0px solid red;
}

.horizontal {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.horizontal_1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



.vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1100px) and (min-width: 770px) {
    .horizontal_1 {
        flex-direction: column;
    }

    .video_yt {
        width: 90vw;
        left: 5vw;
        height: 50.625vw;
    }
}

@media (max-width: 769px) {
    * {
        max-width: 100vw;
    }

    .section0 {
        height: auto;
    }



    .banner {
        max-width: none;
        left: 0vw;
        width: 100vw;
        height: auto;
        overflow: hidden;
    }

    .banner2 {
        max-width: none;
        left: 0vw;
        width: 100vw;
        height: 250px;
        overflow: hidden;
        object-fit: cover;
        object-position: right;
        margin-bottom: 20px;
        filter: brightness(95%);
    }

    .ctn_banner {
        height: auto;
    }

    #banner_desktop {
        display: none;
    }

    #banner_mobile {
        display: block;
    }
    

    .button_banner {
        width: 90vw;
        height: 10vw;
        left: 5vw;
        top: -12vw;
        font-size: 4vw;
        animation: none;
        background: #fff;
        color: #A9B9A1;
    }

    .button_banner2 {
        width: 90vw;
        height: 10vw;
        left: 5vw;
        top: 190px;
        font-size: 4vw;
        animation: none;
        background: #fff;
        color: #A9B9A1;
    }

    .titulo_banner {
        width: 90vw;
        left: 5vw;
        font-size: 9vw;
        font-weight: 800;
        top: -100vw;
        margin-top: 0;
        line-height: 20px;
        animation: none;
    }

    .titulos_ctn {
        top: 80px;
    }

    .titulo_banner1 {
        width: 90vw;
        left: 5vw;
        
        font-size: 7vw;
        font-weight: 600;
        margin-top: 0;
        line-height: 8vw;
        animation: none;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.479);

    }

    .titulo_banner2 {
        width: 90vw;
        left: 5vw;
        font-size: 4vw;
        font-weight: 400;
        margin-top: 0;
        line-height: 20px;
        animation: none;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.479);

    }

    .titulo_banner_span1 {
        font-size: 5vw;
        color: #000000;
        line-height: 40px;
        top: 5px;
    }



    .escrita_banner {
        width: 90vw;
        display: none;
        font-size: 0.8rem;
        top: -25vw;
        text-shadow: 1px 1px 2px #00000093;
        animation: none;
        margin-bottom: 0;
    }

    .titulo_banner_span2 {
        font-size: 4vw;
    }
    .flex_section1 {
        flex-direction: column-reverse;
    }
    .flex_section2 {
        flex-direction: column;
    }
    .section0 {
        overflow: hidden;
        height: 150vw;
        clip-path: ellipse(300% 100% at 50% 0%);
    }
    .video_yt {
        width: 90vw;
        left: 5vw;
        height: 50.625vw;
    }

    .descricao {
        width: 90vw;
    }

    .divisao {
        margin-top: 5vw;
        margin-bottom: 5vw;
        width: 90vw;
        left: 5vw;
    }

    
    .instagram_header {
        flex-direction: column;
        width: 90vw;
        left: 2vw;
    }

    .instagram_titulo {
        margin: auto;
        width: 60vw;
        left: 0;
        margin-right: auto;
    }

    .button_instagram {
        width: 150px;
        height: 30px;
        margin-top: 20px;
    }


    .instagram_foto {
        width: calc(45vw - 2.5px);
        height: calc(45vw - 2.5px);
    }
    
    .instagram_foto_hover_info {

        width: calc(45vw - 2.5px);
        height: calc(45vw - 2.5px);
        margin-top: calc(-45vw - 2.5px);
    }

    .instagram_descricao {
        position: relative;
        left: 2vw;
        width: 40vw;
        height: 30vw;
        font-size: 3vw;

        
    }

    .instagram_info_hover {
        font-size: 4vw;
        margin: 0vw;
    }

    .instagram_icon_img {
        width: 6vw;
    }
    

    .instagram_hover_info_ctn {
        position: relative;
        left: 2vw;
        width: 37vw;
        margin-bottom: 4vw;
    }

    .logo_instagram {
        width: 4vw;
        height: 4vw;
        margin-right: 2vw;
    }

    .horizontal_1 {
        flex-direction: column;
    }

    .grid_procedimentos {
        grid-template-columns: 1fr 1fr;
    }

    .img_procedimentos {
        height: 50vw;
    }

    .titulo_procedimento {
        font-size: 4vw;
    }

    .arrow_procedimentos {
        font-size: 5vw;
    }


}

